#!/bin/bash

#-------------------------------------------------------------------------------
# hscCreatePackage.sh
#
# This shell script is invoked to create a package file and add one.
# file to it.
#
# Usage: hscCreatePackage <fullyQualifiedPackageFileName> <fullyQualifiedFileToAdd>
#
# Return Codes:
# 0 - Creation was successful
# Value other than 0 - Creation was not successful
#-------------------------------------------------------------------------------

rm -f ${1}
zip ${1} ${2}
